/* sectors-services.css - Bespoke Architecture */

.unique-sectors {
    background-color: var(--primary-dark, rgb(13, 13, 36));
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Ambient dynamic background providing depth */
.ambient-background {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,165,0,0.15) 0%, rgba(13,13,36,0) 70%);
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.glass-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px 40px;
}

.glass-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
}
.glass-hero p {
    font-size: 1.2rem;
    color: orange;
}

.glass-grid {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* The Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: orange;
    background: rgba(255, 165, 0, 0.05);
}

.glass-card i {
    font-size: 40px;
    color: orange;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.glass-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.services-banner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,165,0,0.3);
}

.services-banner h2 {
    font-size: 2rem;
    color: orange;
    margin-bottom: 30px;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-chip {
    padding: 15px 30px;
    border: 1px solid white;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: background 0.3s, border-color 0.3s;
}

.service-chip:hover {
    background: orange;
    border-color: orange;
    color: black;
    font-weight: bold;
}
